home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / amigalib / dopktn.c < prev    next >
C/C++ Source or Header  |  1999-01-01  |  815b  |  32 lines

  1. #include <proto/dos.h>
  2.  
  3. LONG DoPkt0(struct MsgPort *port, long action)
  4. {
  5.   return DoPkt(port, action, 0, 0, 0, 0, 0);
  6. }
  7.  
  8. LONG DoPkt1(struct MsgPort *port, long action, long arg1)
  9. {
  10.   return DoPkt(port, action, arg1, 0, 0, 0, 0);
  11. }
  12.  
  13. LONG DoPkt2(struct MsgPort *port, long action, long arg1, long arg2)
  14. {
  15.   return DoPkt(port, action, arg1, arg2, 0, 0, 0);
  16. }
  17.  
  18. LONG DoPkt3(struct MsgPort *port, long action, long arg1, long arg2, long arg3)
  19. {
  20.   return DoPkt(port, action, arg1, arg2, arg3, 0, 0);
  21. }
  22.  
  23. LONG DoPkt4(struct MsgPort *port, long action, long arg1, long arg2, long arg3, long arg4)
  24. {
  25.   return DoPkt(port, action, arg1, arg2, arg3, arg4, 0);
  26. }
  27.  
  28. LONG DoPkt5(struct MsgPort *port, long action, long arg1, long arg2, long arg3, long arg4, long arg5)
  29. {
  30.   return DoPkt(port, action, arg1, arg2, arg3, arg4, arg5);
  31. }
  32.